From: Ken Raeburn Date: Mon, 15 Jul 2002 06:55:28 +0000 (+0000) Subject: * fns.c (Fstring_as_multibyte): Use STRING_SET_INTERVALS. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~31675 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=3932549542ee8b8e4597d2b2686d1c08efdfc25f;p=emacs.git * fns.c (Fstring_as_multibyte): Use STRING_SET_INTERVALS. --- diff --git a/src/fns.c b/src/fns.c index 9874b4dfa48..1ce66b63fb9 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1135,7 +1135,7 @@ multibyte character of charset `eight-bit-control' or `eight-bit-graphic'. */) str_as_multibyte (SDATA (new_string), nbytes, SBYTES (string), NULL); string = new_string; - STRING_INTERVALS (string) = NULL_INTERVAL; + STRING_SET_INTERVALS (string, NULL_INTERVAL); } return string; }